type runtime.sudog
41 uses
runtime (current package)
chan.go#L55: first *sudog
chan.go#L56: last *sudog
chan.go#L294: func send(c *hchan, sg *sudog, ep unsafe.Pointer, unlockf func(), skip int) {
chan.go#L335: func sendDirect(t *_type, sg *sudog, src unsafe.Pointer) {
chan.go#L348: func recvDirect(t *_type, sg *sudog, dst unsafe.Pointer) {
chan.go#L615: func recv(c *hchan, sg *sudog, ep unsafe.Pointer, unlockf func(), skip int) {
chan.go#L756: func (q *waitq) enqueue(sgp *sudog) {
chan.go#L770: func (q *waitq) dequeue() *sudog {
chan.go#L811: func racesync(c *hchan, sg *sudog) {
chan.go#L821: func racenotify(c *hchan, idx uint, sg *sudog) {
mgc.go#L1660: var sg, sgnext *sudog
proc.go#L414: func acquireSudog() *sudog {
proc.go#L437: pp.sudogcache = append(pp.sudogcache, new(sudog))
proc.go#L452: func releaseSudog(s *sudog) {
proc.go#L479: var first, last *sudog
runtime2.go#L355: type sudog struct {
runtime2.go#L362: next *sudog
runtime2.go#L363: prev *sudog
runtime2.go#L385: parent *sudog // semaRoot binary tree
runtime2.go#L386: waitlink *sudog // g.waiting list or semaRoot
runtime2.go#L387: waittail *sudog // semaRoot
runtime2.go#L490: waiting *sudog // sudog structures this g is waiting on (that have a valid elem ptr); in lock order
runtime2.go#L664: sudogcache []*sudog
runtime2.go#L665: sudogbuf [128]*sudog
runtime2.go#L825: sudogcache *sudog
select.go#L234: sg *sudog
select.go#L237: sglist *sudog
select.go#L238: sgnext *sudog
select.go#L240: nextp **sudog
select.go#L333: sg = (*sudog)(gp.param)
select.go#L600: func (q *waitq) dequeueSudoG(sgp *sudog) {
sema.go#L42: treap *sudog // root of balanced tree of unique waiters.
sema.go#L95: func readyWithTime(s *sudog, traceskip int) {
sema.go#L246: func (root *semaRoot) queue(addr *uint32, s *sudog, lifo bool) {
sema.go#L252: var last *sudog
sema.go#L333: func (root *semaRoot) dequeue(addr *uint32) (found *sudog, now int64) {
sema.go#L404: func (root *semaRoot) rotateLeft(x *sudog) {
sema.go#L432: func (root *semaRoot) rotateRight(y *sudog) {
sema.go#L477: head *sudog
sema.go#L478: tail *sudog
sema.go#L602: for p, s := (*sudog)(nil), l.head; s != nil; p, s = s, s.next {
|
The pages are generated with Golds v0.6.7. (GOOS=linux GOARCH=amd64)
Golds is a Go 101 project developed by Tapir Liu.
PR and bug reports are welcome and can be submitted to the issue list.
Please follow @Go100and1 (reachable from the left QR code) to get the latest news of Golds. |